Back

Status Bar Scroll Message

 

This scroll will stream a message in the Status Bar at the bottom of the browser.  The message is in yellow.

 
<!-- Paste between the <head></head> tags of the HTML Document -->
<SCRIPT LANGUAGE="JavaScript">
myMsg = "Visit our New Arrivals Page and get 10% off your purchace... "
i = 0
function scrollMsg() {
window.status = myMsg.substring
(i,myMsg.length) + myMsg.
substring(0,i-1)
if(i< myMsg.length){
i++
}
else { i = 0
}
setTimeout("scrollMsg()",100)
}
</script>

<!-- script goes in the <BODY> tag -->
onLoad="scrollMsg()"
 

Paste script between the <head></head> tags of your HTML Document.

Paste script in the <Body> tag

� Copyright 2009 Ashesh